home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / Sample Code / AOCE Sample Code / Digital Signatures / Digital Signature Demo / Source ƒ / DemoMain.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-23  |  235 b   |  18 lines  |  [TEXT/KAHL]

  1. /*
  2.  * DemoMain.c
  3.  * Copyright © 1993, Apple Computer Inc. All rights reserved.
  4.  */
  5. #include "DemoApp.h"
  6.  
  7.  
  8. void
  9. main()
  10. {
  11.         DemoApp                *demoApp;
  12.             
  13.         demoApp = new(DemoApp);
  14.         demoApp->IDemoApp();
  15.         demoApp->Run();
  16.         demoApp->Exit();
  17. }
  18.